home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Source.bin / LongDistPhoneNumber.java < prev    next >
Text File  |  1998-08-21  |  583b  |  28 lines

  1. package symantec.itools.awt.util.edit;
  2.  
  3.  
  4. /**
  5.  * An abstract subclass of PhoneNumber for use as various long distance
  6.  * phone numbers.
  7.  *
  8.  * @see symantec.itools.awt.edit.USLongDistPhoneNumber
  9.  * @see symantec.itools.awt.edit.IntlLongDistPhoneNumber
  10.  *
  11.  * @version 1.0, Nov 26, 1996
  12.  *
  13.  * @author    Symantec
  14.  */
  15. public abstract class LongDistPhoneNumber
  16.     extends PhoneNumber
  17. {
  18.     /**
  19.      * Create new formatted field.
  20.      *
  21.      * @param i number of columns in the field
  22.      */
  23.     protected LongDistPhoneNumber(int i)
  24.     {
  25.         super(i);
  26.     }
  27. }
  28.